From 2122f8d4acb7482d5ed81d69378c91f453451bfb Mon Sep 17 00:00:00 2001 From: Alex Larsson Date: Wed, 6 Jun 2001 16:20:18 +0000 Subject: [PATCH] Fix up error messages. 2001-06-06 Alex Larsson * gdk/linux-fb/gdkmain-fb.c (_gdk_windowing_init_check): Fix up error messages. --- gdk/linux-fb/gdkmain-fb.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gdk/linux-fb/gdkmain-fb.c b/gdk/linux-fb/gdkmain-fb.c index a00dd4c221..77318ddeeb 100644 --- a/gdk/linux-fb/gdkmain-fb.c +++ b/gdk/linux-fb/gdkmain-fb.c @@ -37,6 +37,7 @@ #include #include #include +#include #include "gdk.h" @@ -498,7 +499,7 @@ gdk_fb_display_new () display->console_fd = open ("/dev/console", O_RDWR); if (display->console_fd < 0) { - g_warning ("Can't open /dev/console: %s", strerror (display->console_fd)); + g_warning ("Can't open /dev/console: %s", strerror (errno)); g_free (display); return NULL; } @@ -542,7 +543,7 @@ gdk_fb_display_new () display->tty_fd = open (buf, O_RDWR|O_NONBLOCK); if (display->tty_fd < 0) { - g_warning ("Can't open %s: %s", buf, strerror (display->tty_fd)); + g_warning ("Can't open %s: %s", buf, strerror (errno)); close (display->console_fd); g_free (display); return NULL; @@ -556,7 +557,7 @@ gdk_fb_display_new () display->fb_fd = open (fb_filename, O_RDWR); if (display->fb_fd < 0) { - g_warning ("Can't open %s: %s", fb_filename, strerror (display->fb_fd)); + g_warning ("Can't open %s: %s", fb_filename, strerror (errno)); g_free (fb_filename); close (display->tty_fd); close (display->console_fd); -- 2.30.2